
/* scrollbar */

/* Tamaño del scroll */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
  }

/* Estilos barra (thumb) de scroll */
::-webkit-scrollbar-thumb {
	background: #009976;
	border: solid 3px #fff;
	background-clip: content-box;
	border-radius: 6px;
}

::-webkit-scrollbar-track-piece {
	border-radius: 2px;
	background-color: #d2ffda;
	background-clip: content-box;
	border-radius: 6px;
	border: solid 3px #fff;
  }


*::-webkit-scrollbar-thumb:active {
	background-color: #009976;

}



::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
	display: block;
}

/* Turn off the down area up on top, and up area on bottom */
::-webkit-scrollbar-button:start:increment,
::-webkit-scrollbar-button:end:decrement {
	display: none;
}

/* Place The scroll down button at the bottom */
/* ::-webkit-scrollbar-button:end:increment {
	background-image: url('imagenes/down.svg');
} */

/* Place The scroll up button at the up */
/* ::-webkit-scrollbar-button:start:decrement {
	background-image: url('imagenes/up.svg');
} */


/* FIN SCROLL */

/* BORDES PAGINA */

.paper-vertical .page, .paper-horizontal .page {
	border: 0px ;
    margin: 0PX;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

body {
	margin: 0px;
}

.boton-blanco {
	border-top: none!important;
	background: #fff;
	padding: 10px 0px!important;
	border-radius: 30px;
	/* left: -5px; */
}
.boton-blanco:hover {
color: #009976;
background: #d1ffda;
border-radius: 2em;
border:none;
/* cursor: url("../estilos/graficos/cursor.png"), auto; */

	/* animation: boton-over 1s ease; */
}

.boton-verde {
	border-top: none !important;
	background: #009976;
	padding: 10px 0px 10px 0px !important;
	border-radius: 30px;
	transition: 0.3s ease;
	/* left: -5px; */
}

.boton-verde:hover {
	background: #D1FFD8;
	color: #009976;
	border-radius: 2em;
	border: none;
}